type compress/flate.byLiteral

7 uses

	compress/flate (current package)
		huffman_code.go#L22: 	lns       byLiteral // stored to avoid repeated allocation in generate
		huffman_code.go#L314: type byLiteral []literalNode
		huffman_code.go#L316: func (s *byLiteral) sort(a []literalNode) {
		huffman_code.go#L317: 	*s = byLiteral(a)
		huffman_code.go#L321: func (s byLiteral) Len() int { return len(s) }
		huffman_code.go#L323: func (s byLiteral) Less(i, j int) bool {
		huffman_code.go#L327: func (s byLiteral) Swap(i, j int) { s[i], s[j] = s[j], s[i] }